home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH17.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-29  |  142 b   |  8 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  char name[25];
  5.  printf("What is your name? ");
  6.  scanf("%s", name);
  7.  printf("\nYour name is %s", name);
  8.  }